type net/http.conn

18 uses

	net/http (current package)
		server.go#L248: type conn struct {
		server.go#L304: func (c *conn) hijacked() bool {
		server.go#L311: func (c *conn) hijackLocked() (rwc net.Conn, buf *bufio.ReadWriter, err error) {
		server.go#L419: 	conn             *conn
		server.go#L613: func (srv *Server) newConn(rwc net.Conn) *conn {
		server.go#L614: 	c := &conn{
		server.go#L637: 	conn *conn
		server.go#L959: func (c *conn) readRequest(ctx context.Context) (w *response, err error) {
		server.go#L1685: func (c *conn) finalFlush() {
		server.go#L1703: func (c *conn) close() {
		server.go#L1729: func (c *conn) closeWriteAndWait() {
		server.go#L1753: func (c *conn) setState(nc net.Conn, state ConnState, runHook bool) {
		server.go#L1774: func (c *conn) getState() (state ConnState, unixSec int64) {
		server.go#L1817: func (c *conn) serve(ctx context.Context) {
		server.go#L2665: 	activeConn map[*conn]struct{}
		server.go#L3141: func (s *Server) trackConn(c *conn, add bool) {
		server.go#L3145: 		s.activeConn = make(map[*conn]struct{})
		server.go#L3572: 	c *conn